/* -- tabs_empty -- */
#tabs_empty1 * {
  font-family: 'Work Sans', sans-serif; }

#tabs_empty1 html, #tabs_empty1 body {
  height: 100%;
  color: #1a1b1c; }

#tabs_empty1 label, #tabs_empty1 a {
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  display: inline-block;
  color: inherit;
  transition: border 0.2s;
  border-bottom: 5px solid rgba(194, 91, 0, 0.2);
  padding: 3px 2px; }
  #tabs_empty1 label:hover, #tabs_empty1 a:hover {
    border-bottom-color: #c25b00; }

#tabs_empty1 .layout {
  display: grid;
  height: 100%;
  width: 100%;
  overflow: hidden;
  grid-template-rows: 50px 1fr;
  grid-template-columns: 1fr 1fr 1fr; }

#tabs_empty1 input[type="radio"] {
  display: none; }

#tabs_empty1 label.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-bottom: 1px solid #fff;
  background: #f7f7f7;
  font-style: italic;
  user-select: none;
  transition: background 0.4s, padding-left 0.2s;
  padding-left: 0; }
  input[type="radio"]:checked + .page + #tabs_empty1 label.nav {
    background: #c25b00;
    color: #ffffff;
    padding-left: 20px; }
    input[type="radio"]:checked + .page + #tabs_empty1 label.nav span {
      padding-left: 20px; }
    input[type="radio"]:checked + .page + #tabs_empty1 label.nav svg {
      opacity: 1; }
  #tabs_empty1 label.nav span {
    padding-left: 0px;
    position: relative; }
  #tabs_empty1 label.nav svg {
    left: 0;
    top: -3px;
    position: absolute;
    width: 15px;
    opacity: 0;
    transition: opacity 0.2s; }

#tabs_empty1 .page {
  grid-column-start: 1;
  grid-row-start: 2;
  grid-column-end: span 3;
  padding: 0px 0px;
  border: 1px solid #ece8d8;
  display: flex;
  align-items: center; }

#tabs_empty1 .page-contents > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s, transform 0.2s;
  padding: 15px; }
  #tabs_empty1 .page-contents > *:nth-child(1) {
    transition-delay: 0.4s; }
  #tabs_empty1 .page-contents > *:nth-child(2) {
    transition-delay: 0.6s; }
  #tabs_empty1 .page-contents > *:nth-child(3) {
    transition-delay: 0.8s; }
  #tabs_empty1 .page-contents > *:nth-child(4) {
    transition-delay: 1s; }
  #tabs_empty1 .page-contents > *:nth-child(5) {
    transition-delay: 1.2s; }
  #tabs_empty1 .page-contents > *:nth-child(6) {
    transition-delay: 1.4s; }
  #tabs_empty1 .page-contents > *:nth-child(7) {
    transition-delay: 1.6s; }
  #tabs_empty1 .page-contents > *:nth-child(8) {
    transition-delay: 1.8s; }
  #tabs_empty1 .page-contents > *:nth-child(9) {
    transition-delay: 2s; }
  #tabs_empty1 .page-contents > *:nth-child(10) {
    transition-delay: 2.2s; }
  #tabs_empty1 .page-contents > *:nth-child(11) {
    transition-delay: 2.4s; }
  #tabs_empty1 .page-contents > *:nth-child(12) {
    transition-delay: 2.6s; }
  #tabs_empty1 .page-contents > *:nth-child(13) {
    transition-delay: 2.8s; }
  #tabs_empty1 .page-contents > *:nth-child(14) {
    transition-delay: 3s; }
  #tabs_empty1 .page-contents > *:nth-child(15) {
    transition-delay: 3.2s; }
  #tabs_empty1 .page-contents > *:nth-child(16) {
    transition-delay: 3.4s; }
  #tabs_empty1 .page-contents > *:nth-child(17) {
    transition-delay: 3.6s; }
  #tabs_empty1 .page-contents > *:nth-child(18) {
    transition-delay: 3.8s; }
  #tabs_empty1 .page-contents > *:nth-child(19) {
    transition-delay: 4s; }
  #tabs_empty1 .page-contents > *:nth-child(20) {
    transition-delay: 4.2s; }

#tabs_empty1 input[type="radio"] + .page {
  transition: transform 0.2s;
  transform: translateX(100%); }

#tabs_empty1 input[type="radio"]:checked + .page {
  transform: translateX(0%); }
  #tabs_empty1 input[type="radio"]:checked + .page .page-contents > * {
    opacity: 1;
    transform: translateY(0px); }

#tabs_empty1 input[type="radio"]:checked + .page + label.nav {
  background: #fff;
  color: #000;
  padding-left: 20px;
  border-top: 1px solid #d3b34d;
  border-left: 1px solid #ece8d8;
  border-right: 1px solid #ece8d8;
  border-bottom: 1px solid #ece8d8; }

#tabs_empty1 .page-contents {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  height: 100%; }

#tabs_empty1 p {
  font-size: 16px; }
